1322B - Present - CodeForces Solution


binary search bitmasks constructive algorithms data structures math sortings *2100

Please click on ads to support us..

C++ Code:

#include <bits/stdc++.h>
#define int long long
using namespace std;

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    vector<int> a(n);
    for(int i = 0; i < n;i++) cin >> a[i];

    int ans = 0;

    for(int i = 40; i >= 0;i--) {
        for(auto &e: a) e &= (2ll << i) - 1;
        sort(a.begin(), a.end());

        int cnt = 0;
        for(int j = 0; j < n;j++) {
            cnt += a.end() - lower_bound(a.begin(), a.end(), (1ll << i) - a[j]);
            cnt -= a.end() - lower_bound(a.begin(), a.end(), (2ll << i) - a[j]);
            cnt += a.end() - lower_bound(a.begin(), a.end(), (3ll << i) - a[j]);
            if(2*a[j] >= (1ll << i)) cnt--;
            if(2*a[j] >= (2ll << i)) cnt++;
            if(2*a[j] >= (3ll << i)) cnt--;
        }
        cnt /= 2;

        ans += (1ll << i) * (cnt % 2);
    }

    cout << ans << "\n";
}


Comments

Submit
0 Comments
More Questions

1279A - New Year Garland
1279B - Verse For Santa
202A - LLPS
978A - Remove Duplicates
1304A - Two Rabbits
225A - Dice Tower
1660D - Maximum Product Strikes Back
1513A - Array and Peaks
1251B - Binary Palindromes
768B - Code For 1
363B - Fence
991B - Getting an A
246A - Buggy Sorting
884A - Book Reading
1180A - Alex and a Rhombus
445A - DZY Loves Chessboard
1372A - Omkar and Completion
159D - Palindrome pairs
981B - Businessmen Problems
1668A - Direction Change
1667B - Optimal Partition
1668B - Social Distance
88B - Keyboard
580B - Kefa and Company
960A - Check the string
1220A - Cards
897A - Scarborough Fair
1433B - Yet Another Bookshelf
1283B - Candies Division
1451B - Non-Substring Subsequence